home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir31 / pasutl18.zip / WAVEFRMT.DOC < prev    next >
Text File  |  1992-10-29  |  976b  |  28 lines

  1.                        SHORT INFO ON THE ".WAV" FILE FORMAT
  2.                        ------------------------------------
  3.  
  4.     /*\
  5.     |*|----====< ".WAV" file format >====----
  6.     |*|
  7.     |*|     4 bytes 'RIFF'
  8.     |*|     4 bytes <length>
  9.     |*|     4 bytes 'WAVE'
  10.     |*|     4 bytes 'fmt '
  11.     |*|     4 bytes  <length>        ; 10h - length of 'data' block
  12.     |*|     2 bytes  01         ; format tag
  13.     |*|     2 bytes  01         ; channels (1=mono, 2=stereo)
  14.     |*|     4 bytes  xxxx        ; samples per second
  15.     |*|     4 bytes  xxxx        ; average samples per second
  16.     |*|     2 bytes  01         ; block alignment
  17.     |*|     2 bytes  08         ; bits per sample
  18.     |*|     4 bytes 'data'
  19.     |*|     4 bytes <length>
  20.     |*|       bytes <sample data>
  21.     |*|
  22.     |*|     Note: the sample data must end on an even byte boundary.
  23.     |*|           All numeric data fields are in the Intel format
  24.     |*|           of low-high byte ordering.
  25.     |*|
  26.     \*/
  27.  
  28.